home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 January / Disc 3 / Amethyst.iso / live / lib / hotplug / hotplug-net next >
Encoding:
Text File  |  2002-11-04  |  229 b   |  15 lines

  1. #!/bin/sh
  2. #
  3. # ACTION=register|unregister
  4. # INTERFACE=eth0...
  5.  
  6. case "$ACTION" in
  7.     register)
  8.         /sbin/ifup $INTERFACE
  9.     ;;
  10.     unregister)
  11.         # We can't, the device already has been downed and freed.
  12.         # /sbin/ifdown $INTERFACE
  13.     ;;
  14. esac
  15.